page.jsx 446 B

123456789101112131415161718
  1. import PlaceholderPage from "@/components/placeholders/PlaceholderPage";
  2. /**
  3. * /:branch/:year
  4. *
  5. * Next.js 15+ treats `params` as an async value (Promise) for dynamic routes.
  6. */
  7. export default async function BranchYearPage({ params }) {
  8. const resolvedParams = await params;
  9. return (
  10. <PlaceholderPage
  11. title="Year"
  12. description="Year placeholder (future: months overview / explorer drill-down)."
  13. params={resolvedParams}
  14. />
  15. );
  16. }